home *** CD-ROM | disk | FTP | other *** search
- PXFTIME(3F) Last changed: 1-6-98
-
-
- NNAAMMEE
- PPXXFFTTIIMMEE - Gets system time
-
- SSYYNNOOPPSSIISS
- SSUUBBRROOUUTTIINNEE PPXXFFTTIIMMEE ((_i_t_i_m_e,, _i_e_r_r_o_r))
- IINNTTEEGGEERR _i_t_i_m_e,, _i_e_r_r_o_r
-
- IIMMPPLLEEMMEENNTTAATTIIOONN
- UNICOS, UNICOS/mk, and IRIX systems
-
- SSTTAANNDDAARRDDSS
- IEEE standard interface for FORTRAN 77
-
- DDEESSCCRRIIPPTTIIOONN
- On IRIX systems, this routine is in lliibbffoorrttrraann..ssoo which is linked by
- default when compiling programs with the MIPSpro 7 Fortran 90 compiler
- or when compiling programs with the --ccrraayylliibbss option to the MIPSpro
- 7.2 F77 compiler.
-
- The routine PPXXFFTTIIMMEE uses the ttiimmee function to return the number of
- seconds since 00:00:00 CTU (coordinated universal time), January 1,
- 1970 (the _E_p_o_c_h).
-
- When using the CF90 compiler or MIPSpro 7 Fortran 90 compiler on
- UNICOS, UNICOS/mk, or IRIX systems, all arguments must be of default
- kind unless documented otherwise. On UNICOS and UNICOS/mk, default
- kind is KKIINNDD==88 for integer, real, complex, and logical arguments; on
- IRIX, the default kind is KKIINNDD==44.
-
- The following is a list of valid arguments for this routine:
-
- _i_t_i_m_e An output integer variable specifying the number of seconds
- since 00:00:00 UTC, January 1, 1970.
-
- _i_e_r_r_o_r An output integer variable that contains zero if PPXXFFTTIIMMEE was
- successful or nonzero if PPXXFFTTIIMMEE was not successful.
-
- EEXXAAMMPPLLEESS
- In this example, PPXXFFTTIIMMEE returns the current system time in number of
- seconds since January 1, 1970.
-
- program testpxf
- integer itime, ierror
- c call PXFTIME
- CALL PXFTIME(itime, ierror)
- c print output arguments
- print *,'itime=',itime
- print *,'ierror=',ierror
- end
-
- SSEEEE AALLSSOO
- ttiimmee(3C)
-
- _A_p_p_l_i_c_a_t_i_o_n _P_r_o_g_r_a_m_m_e_r'_s _L_i_b_r_a_r_y _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, publication SR-
- 2165, for the printed version of this man page.
-
-